home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 49 / Amiga Format CD49 (2000-01-17)(Future Publishing)(GB)(Track 1 of 3)[!][issue 2000-02].iso / -serious- / misc / db3.6-beta / db3.6-beta-src / dbrexx.h < prev    next >
C/C++ Source or Header  |  1999-11-30  |  551b  |  22 lines

  1. /* Headerfile for the Rexx support for db */
  2.  
  3. #include <exec/types.h>
  4. #include <exec/memory.h>
  5. #include <exec/ports.h>
  6. #include <rexx/rxslib.h>
  7. #include <rexx/storage.h>
  8. #include <rexx/errors.h>
  9.  
  10. extern struct MsgPort *MyRexxPort;
  11. extern char MyRexxPortName[];    /* Enough for name and trailing numbers */
  12.  
  13.  
  14. /* Functions you may call */
  15.  
  16. struct MsgPort *SetupRexxPort(char *basename);
  17. void CloseRexxPort(struct MsgPort *rexxport);
  18.  
  19. BOOL SendRexxCommand(char *name);
  20. BOOL SendRexxStrCommand(char *name);
  21. BOOL HandleRexxMessage(struct MsgPort *rexxport);
  22.